home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000320_news@columbia.edu _Mon Feb 19 16:16:21 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id QAA10825
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 19 Feb 2001 16:16:21 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA22313
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 19 Feb 2001 16:16:20 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id QAA18096
  10.     for kermit.misc@watsun.cc.columbia.edu; Mon, 19 Feb 2001 16:00:00 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: automate dialing
  14. Date: 19 Feb 2001 20:59:56 GMT
  15. Organization: Columbia University
  16. Message-ID: <96s1gc$hld$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <3a9187a9.780123@nntp.uunet.ca>,
  20. Guenhwyvar <guenhwyvar_2000@hotmail.com> wrote:
  21. : Whenthe script is going to dialing, i receive this message:
  22. : ?Connection on U.S. Robotics 56K FAX EXT is not open.
  23. :
  24. : No program use the modem.
  25. : My script
  26. : set tapi line U.S._Robotics_56K_FAX_EXT
  27. : if fail end 1 TAPI line U.S._Robotics_56K_FAX_EXT already in use.
  28. :
  29. Your report does not say that this message came out, which suggests
  30. that the modem was opened successfully.
  31.  
  32. : if not equal "\v(modem)" "tapi" set modem type tapi
  33. :
  34. Try removing this command.  SET TAPI LINE automatically sets the
  35. modem type to TAPI if it succeeds.
  36.  
  37. :     output ATDT\m(_MOB_No_Tel)\13\10    ; # D'acc∩┐╜s
  38. :     input 100 CONNECT                    ;
  39. : Attente du mot CONNECT dans les 100 secondes qui suivent
  40. :     if success goto remote_echange_fichier
  41. This is not how to tell K95 to dial.  Remove these commands and use
  42. a DIAL command:
  43.  
  44.   dial \m(_MOB_No_Tel)
  45.   if success goto remote_echange_fichier
  46.  
  47. - Frank